home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 2.iso / dist / fw_gimp.idb / usr / freeware / include / libgimp / gimphelpui.h.z / gimphelpui.h
Encoding:
C/C++ Source or Header  |  2002-07-08  |  2.0 KB  |  67 lines

  1. /* LIBGIMP - The GIMP Library
  2.  * Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3.  *
  4.  * gimphelpui.h
  5.  * Copyright (C) 2000 Michael Natterer <mitch@gimp.org>
  6.  *
  7.  * This library is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU Lesser General Public
  9.  * License as published by the Free Software Foundation; either
  10.  * version 2 of the License, or (at your option) any later version.
  11.  * 
  12.  * This library is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * Library General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU Lesser General Public
  18.  * License along with this library; if not, write to the
  19.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20.  * Boston, MA 02111-1307, USA.
  21.  */
  22.  
  23. #ifndef __GIMP_HELP_UI_H__
  24. #define __GIMP_HELP_UI_H__
  25.  
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif /* __cplusplus */
  29.  
  30.  
  31. /* For information look into the C source or the html documentation */
  32.  
  33.  
  34. typedef void (* GimpHelpFunc) (const gchar *help_data);
  35.  
  36.  
  37. void  gimp_help_init               (void);
  38. void  gimp_help_free               (void);
  39.  
  40. void  gimp_help_enable_tooltips    (void);
  41. void  gimp_help_disable_tooltips   (void);
  42.  
  43. /*  the standard gimp help function
  44.  *  (has different implementations in the main app and in libgimp)
  45.  */
  46. void  gimp_standard_help_func      (const gchar  *help_data);
  47.  
  48. /*  connect the "F1" accelerator of a window  */
  49. void  gimp_help_connect_help_accel (GtkWidget    *widget,
  50.                     GimpHelpFunc  help_func,
  51.                     const gchar  *help_data);
  52.  
  53. /*  set help data for non-window widgets  */
  54. void  gimp_help_set_help_data      (GtkWidget    *widget,
  55.                     const gchar  *tooltip,
  56.                     const gchar  *help_data);
  57.  
  58. /*  activate the context help inspector  */
  59. void  gimp_context_help            (void);
  60.  
  61.  
  62. #ifdef __cplusplus
  63. }
  64. #endif /* __cplusplus */
  65.  
  66. #endif /* __GIMP_HELP_UI_H__ */
  67.